home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _1F93EFAFCABE41DDAB97D34191DC614D < prev    next >
Encoding:
Text File  |  2006-08-04  |  632 b   |  27 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'',
  6.         'Copyright': u'',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro X',
  9.         'Host Version': u'10.00 Alpha 20050620.13'
  10.         }
  11.  
  12. def Preset_RadialBlur():
  13.     return {
  14.         'RadialBlurType': App.Constants.RadialBlurType.Spin, 
  15.         'Strength': 10, 
  16.         'TwirlDegrees': 0, 
  17.         'CenterX': 0, 
  18.         'CenterY': 0, 
  19.         'Aperture': 0, 
  20.         'Aspect': 1
  21.         }
  22.  
  23. def Do(Environment):
  24.     # RadialBlur_LOCALIZED
  25.     App.Do( Environment, 'RadialBlur',         Preset_RadialBlur())
  26.  
  27.